home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Views / Tiled Views / TiledPane.h < prev    next >
Text File  |  2000-06-23  |  475b  |  34 lines

  1. // TiledPane.h
  2.  
  3. #ifndef TiledPane_h
  4. #define TiledPane_h
  5.  
  6. #ifndef TiledView_h
  7. #include "TiledView.h"
  8. #endif
  9. #ifndef RectangularPane_h
  10. #include "RectangularPane.h"
  11. #endif
  12. #ifndef ListLink_h
  13. #include "ListLink.h"
  14. #endif
  15.  
  16. class TiledPane: public RectangularPane
  17.   {
  18.     friend class TiledView;
  19.     
  20.     private:
  21.         ListLink<TiledPane> link;
  22.  
  23.     public:
  24.         TiledPane()
  25.           : link( this )
  26.           {}
  27.       
  28.       int32 proposedSize;
  29.       TiledPane *shuffleNext;
  30.       Rectangle32 proposedBounds;
  31.   };
  32.  
  33. #endif
  34.